home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / makefile1.0160FC08_F3D9_4869_9D41_C611C16F42D5 < prev    next >
Encoding:
Text File  |  2005-06-08  |  882 b   |  49 lines

  1. #
  2. # $Id: Makefile,v 1.2 2000/10/12 01:45:23 idiscovery Exp $
  3. #
  4. # WARNING
  5. #
  6. # This Makefile is NOT for installation purposes. Please read the file
  7. # docs/Install.html for information about installing Tix.
  8. #
  9. #
  10. #
  11. #
  12. #
  13. #
  14. # fs = font scheme source 
  15. # cs = color scheme source 
  16. #
  17. # fsc = font scheme compiled
  18. # csc = color scheme compiled
  19. #
  20.  
  21.  
  22. .SUFFIXES: .fs .cs .csc .fsc
  23.  
  24. all:: FONT_PREF COLOR_PREF
  25.  
  26. FONT_SRC = 14Point.fs 12Point.fs TK.fs TkWin.fs
  27.  
  28. FONT_PREF:: ${FONT_SRC:.fs=.fsc}
  29.  
  30. COLOR_SRC = Bisque.cs Blue.cs Gray.cs SGIGray.cs TixGray.cs TK.cs TkWin.cs
  31.  
  32. COLOR_PREF:: ${COLOR_SRC:.cs=.csc}
  33.  
  34. fresh::
  35.     -rm -f ${COLOR_SRC:.cs=.csc} FONT_PREF:: ${FONT_SRC:.fs=.fsc}
  36.     make
  37.  
  38. .cs.csc:
  39.     tixmkpref -color $< > $@
  40.  
  41. .fs.fsc:
  42.     tixmkpref -font  $< > $@
  43.  
  44. distclean:
  45.     - rm -f *.a *.o core errs *~ \#* TAGS *.E a.out errors \
  46.         *.ps
  47.  
  48. clean:: distclean
  49.